net/http.http2requestParam.authority (field)

9 uses

	net/http (current package)
		h2_bundle.go#L6293: 		authority: f.PseudoValue("authority"),
		h2_bundle.go#L6305: 		if rp.protocol == "" && (rp.path != "" || rp.scheme != "" || rp.authority == "") {
		h2_bundle.go#L6326: 	if rp.authority == "" {
		h2_bundle.go#L6327: 		rp.authority = rp.header.Get("Host")
		h2_bundle.go#L6357: 	scheme, authority, path string
		h2_bundle.go#L6401: 		url_ = &url.URL{Host: rp.authority}
		h2_bundle.go#L6402: 		requestURI = rp.authority // mimic HTTP/1 server behavior
		h2_bundle.go#L6427: 		Host:       rp.authority,
		h2_bundle.go#L7330: 			authority: msg.url.Host,